@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --wcag-min-width: 50px;
  --wcag-min-height: 50px;
  --wcag-max-width: 250px;
  --wcag-max-height: 439px;
}

#wcag_plugin {
    /*z-index: 999;*/
}
#wcag_plugin.wcag {
    position: fixed;
    width: var(--wcag-min-width);
    height: var(--wcag-min-height);
    background-color: #fefefe;
    border-radius: 5px;
    border: 2px solid #1578a9ee;
    font-family: 'Roboto', arial, sans-serif;
    font-size: 12px;
}
    #wcag_plugin.wcag._open {
        width: var(--wcag-max-width);
        height: var(--wcag-max-height);
        border: 2px solid #1578a9ff;
        
        animation-name: wcag-open;
        animation-duration: .3s;
    }
    #wcag_plugin.wcag._close {
        animation-name: wcag-close;
        animation-duration: .3s;
    }
        @keyframes wcag-open {
            0%   {
                   width: var(--wcag-min-width);
                   height: var(--wcag-min-height);
                 }
            100% {
                   width: var(--wcag-max-width);
                   height: var(--wcag-max-height);
                 }
        }
        @keyframes wcag-close {
            0%   {
                   width: var(--wcag-max-width);
                   height: var(--wcag-max-height);
                 }
            100% {
                   width: var(--wcag-min-width);
                   height: var(--wcag-min-height);
                 }
        }
    #wcag_plugin.wcag .wcag-header {
        position: relative;
        width: 100%;
        padding: 5px 5px 5px 7px;
    }
        #wcag_plugin.wcag .wcag-header .wcag-logo-container {
            width: var(--wcag-min-width);
            display: inline;
        }
        #wcag_plugin.wcag .wcag-header .wcag-logo-container .wcag-logo {
            color: #1578a9a9;
            font-size: 35px;
            padding-top: 2px;
            transition: all .5s;
            cursor: pointer;
        }
        #wcag_plugin.wcag .wcag-header .wcag-logo-container .wcag-logo:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
            
            animation-name: wcag-logo-focus;
            animation-duration: 1s;
        }
        @keyframes wcag-logo-focus {
            0%   {
                    outline: none;
                    box-shadow: 0 0 0 1px rgba(21, 156, 228, 0.4);
                 }
            50%   {
                    outline: none;
                    box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);
                 }
            100% {
                    outline: none;
                    box-shadow: 0 0 0 2px rgba(21, 156, 228, 0.4);
                 }
        }
            #wcag_plugin.wcag .wcag-header .wcag-logo-container .wcag-logo:hover {
                color: #1578a9ff;
                text-decoration: none !important;
            }
        #wcag_plugin.wcag .wcag-header .wcag-logo-sum-container {
            display: none; 
            float: right; 
            height: 25px; 
            padding-right: 25px; 
            padding-top: 8px;
            opacity: .8;
        }
            #wcag_plugin.wcag .wcag-header .wcag-logo-sum-container._open {
                display: inline !important; 
            }
            #wcag_plugin.wcag .wcag-header .wcag-logo-sum-container img {
                height: 25px; 
                width: auto;
            }


    #wcag_plugin.wcag .wcag-container-options {
        display: none;
        margin-top: 20px;
    }
    #wcag_plugin.wcag .wcag-container-options.active {
        display: block !important;
    }
        #wcag_plugin.wcag .wcag-options {
            display: flex;
            width: 100%;
            flex-wrap: wrap;
            justify-content: space-evenly;
            align-items: stretch;
            margin-top: 10px;
        }
            #wcag_plugin.wcag .wcag-options .wcag-col {
                flex-grow: 1;
            }
                #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item {
                    display: table;
                    position: relative;
                    width: 110px;
                    height: 74px;
                    border-radius: 5px;
                    border: 2px solid #1578a9a0;
                    margin: auto;
                    color: #555;
                    transition: all .7s;
                    cursor: pointer;
                    outline: none;
                }
                    #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item.anim {
                        box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);

                        animation-name: wcag-item-anim;
                        animation-duration: 1s;
                    }
                        @keyframes wcag-item-anim {
                            0%   {
                                    outline: none;
                                    box-shadow: 0 0 0 1px rgba(21, 156, 228, 0.4);
                                 }
                            25%   {
                                    outline: none;
                                    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
                                 }
                            50%  {
                                    outline: none;
                                    box-shadow: 0 0 0 2px rgba(21, 156, 228, 0.4);
                                 }
                            100% {
                                    outline: none;
                                    box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.4);
                                 }
                        }
                #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item:hover {
                    color: #efefef;                        
                    background-color: #555;
                    border: 2px solid transparent;
                }
                    #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item:hover i {
                        color: #efefef !important;
                    }
                    #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item i {
                        transition: all .7s;
                        color: #555 !important;
                    }
                    #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item .wcag-center {
                        display: table-cell;
                        vertical-align: middle;
                        text-align: center;
                    }
                        #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item .wcag-center .faicon {
                            font-size: 29px;
                            padding-bottom: 15px;
                        }
                            #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item i {
                                outline: none;
                                color: #555 !important;
                                text-decoration: none;
                            }
                    #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item .wcag-title {
                        position: absolute; 
                        bottom: 7px; 
                    }
                    #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item .wcag-counter {
                        position: absolute; 
                        bottom: -2px; 
                    }
                        #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item .wcag-counter .wcag-counter-item {
                            display: inline-block;
                            position: relative; 
                            width: 22px;
                            min-width: 22px;
                            height: 5px;
                            border: 1px solid #aaa;
                            margin: 0 2px;
                        }
                        #wcag_plugin.wcag .wcag-options .wcag-col .wcag-item .wcag-counter .wcag-counter-item.active {
                            background-color: #F4D03F;
                        }

    #wcag_plugin.wcag .wcag-container-bottom {
        display: none;
        margin: 20px 5px 5px 5px;        
        background-color: #f7f7f7;
        padding: 10px;
        border-radius: 5px;
		line-height: 1.4;
    }
        #wcag_plugin.wcag .wcag-container-bottom._open {
            display: block !important;
        }
        #wcag_plugin.wcag .wcag-container-bottom p {
            text-align: center !important;
            margin: 0 !important;
            margin-bottom: 5px !important;
			font-size: 12px !important;
			line-height: 1.3 !important;
        }
        #wcag_plugin.wcag .wcag-container-bottom .mail-contact {
            font-weight: bold;
            outline: none;
            padding: 5px;
        }
        #wcag_plugin.wcag .wcag-container-bottom .mail-contact:focus {
            text-decoration: underline;
            box-shadow: 0 0 0 3px #ff9933ff;
/*            box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4);*/
        }


#wcag_plugin.wcag.p1 {
    top: 30px;
    left: 10px;
}
#wcag_plugin.wcag.p2 {
    top: 10px;
    left: 50%;
}
#wcag_plugin.wcag.p3 {
    top: 10px;
    right: 10px;
}
#wcag_plugin.wcag.p4 {
    top: 50%;
    right: 10px;
}
#wcag_plugin.wcag.p5 {
    bottom: 10px;
    right: 10px;
}
#wcag_plugin.wcag.p6 {
    bottom: 10px;
    left: 50%;
}
#wcag_plugin.wcag.p7 {
    bottom: 10px;
    left: 10px;
}
#wcag_plugin.wcag.p8 {
    top: 50%;
    left: 10px;
}


._wcag_fs_2 {
    font-size: 2px !important;
}
._wcag_fs_3 {
    font-size: 3px !important;
}
._wcag_fs_4 {
    font-size: 4px !important;
}
._wcag_fs_5 {
    font-size: 5px !important;
}
._wcag_fs_6 {
    font-size: 6px !important;
}
._wcag_fs_7 {
    font-size: 7px !important;
}
._wcag_fs_8 {
    font-size: 8px !important;
}
._wcag_fs_9 {
    font-size: 9px !important;
}
._wcag_fs_10 {
    font-size: 10px !important;
}
._wcag_fs_11 {
    font-size: 11px !important;
}
._wcag_fs_12 {
    font-size: 12px !important;
}
._wcag_fs_13 {
    font-size: 13px !important;
}
._wcag_fs_14 {
    font-size: 14px !important;
}
._wcag_fs_15 {
    font-size: 15px !important;
}
._wcag_fs_16 {
    font-size: 16px !important;
}
._wcag_fs_17 {
    font-size: 17px !important;
}
._wcag_fs_18 {
    font-size: 18px !important;
}
._wcag_fs_19 {
    font-size: 19px !important;
}
._wcag_fs_20 {
    font-size: 20px !important;
}
._wcag_fs_21 {
    font-size: 21px !important;
}
._wcag_fs_22 {
    font-size: 22px !important;
}
._wcag_fs_23 {
    font-size: 23px !important;
}
._wcag_fs_24 {
    font-size: 24px !important;
}
._wcag_fs_25 {
    font-size: 25px !important;
}
._wcag_fs_26 {
    font-size: 26px !important;
}
._wcag_fs_27 {
    font-size: 27px !important;
}
._wcag_fs_28 {
    font-size: 28px !important;
}
._wcag_fs_29 {
    font-size: 29px !important;
}
._wcag_fs_30 {
    font-size: 30px !important;
}
._wcag_fs_31 {
    font-size: 31px !important;
}
._wcag_fs_32 {
    font-size: 30px !important;
}
._wcag_fs_33 {
    font-size: 33px !important;
}
._wcag_fs_34 {
    font-size: 34px !important;
}
._wcag_fs_35 {
    font-size: 35px !important;
}
._wcag_fs_36 {
    font-size: 36px !important;
}
._wcag_fs_37 {
    font-size: 37px !important;
}
._wcag_fs_38 {
    font-size: 38px !important;
}
._wcag_fs_39 {
    font-size: 39px !important;
}
._wcag_fs_40 {
    font-size: 40px !important;
}
._wcag_fs_41 {
    font-size: 41px !important;
}
._wcag_fs_42 {
    font-size: 42px !important;
}
._wcag_fs_43 {
    font-size: 43px !important;
}
._wcag_fs_44 {
    font-size: 44px !important;
}
._wcag_fs_45 {
    font-size: 45px !important;
}
._wcag_fs_46 {
    font-size: 46px !important;
}


._wcag_body_white {
    background-color: #fff !important;
}
._wcag_body_black {
    background-color: #000 !important;
}
._wcag_contrast_invert {
    filter: invert(100%) !important;
    -webkit-filter: invert(100%) !important;
}
._wcag_contrast_gray {
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
}


._wcag_anchor_1 {
    color: white !important;
    background-color: black !important;
}
._wcag_anchor_2 {
    color: black !important;
    background-color: white !important;
    text-decoration: underline !important;
}


._wcag_letter_spacing_2 {
    letter-spacing: 2px !important;
}
._wcag_letter_spacing_4 {
    letter-spacing: 4px !important;
}
._wcag_letter_spacing_6 {
    letter-spacing: 6px !important;
}


._wcag_line_height_15 {
    line-height: 1.5 !important;
}
._wcag_line_height_2 {
    line-height: 2 !important;
}
._wcag_line_height_25 {
    line-height: 2.5 !important;
}